home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / ssh_pkcs.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  67 lines

  1. #
  2. # This script was written by Xue Yong Zhi<xueyong@udel.edu>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(11342);
  10.  script_bugtraq_id(2344);
  11.  script_version ("$Revision: 1.6 $");
  12.  script_cve_id("CVE-2001-0361");
  13.  
  14.  name["english"] = "PKCS 1 Version 1.5 Session Key Retrieval";
  15.  script_name(english:name["english"]);
  16.  
  17.  desc["english"] = "
  18. You are running SSH protocol version 1.5.
  19.  
  20. This version allows a remote attacker to decrypt and/or alter traffic via 
  21. an attack on PKCS#1 version 1.5 knows as a Bleichenbacher attack. 
  22. OpenSSH up to version 2.3.0, AppGate, and SSH Communications 
  23. Security ssh-1 up to version 1.2.31 have the vulnerability present, 
  24. although it may not be exploitable due to configurations.
  25.  
  26. Solution :
  27. Patch and New version are available from SSH/OpenSSH.
  28.  
  29. Risk factor : Low";
  30.     
  31.  script_description(english:desc["english"]);
  32.  
  33.  summary["english"] = "Checks for the remote SSH version";
  34.  
  35.  script_summary(english:summary["english"]);
  36.  
  37.  script_category(ACT_GATHER_INFO);
  38.  
  39.  script_copyright(english:"This script is Copyright (C) 2003 Xue Yong Zhi",
  40.         francais:"Ce script est Copyright (C) 2003 Xue Yong Zhi");
  41.  family["english"] = "Gain a shell remotely";
  42.  script_family(english:family["english"]);
  43.  script_dependencie("ssh_detect.nasl");
  44.  script_require_ports("Services/ssh", 22);
  45.  exit(0);
  46. }
  47.  
  48. #
  49. # The script code starts here
  50. #
  51.  
  52. port = get_kb_item("Services/ssh");
  53. if(!port)port = 22;
  54.  
  55. banner = get_kb_item("SSH/banner/" + port );
  56. if(!banner)exit(0);
  57.  
  58. #Looking for SSH product version number from 1.0 to 1.2.31
  59. if(ereg(string:banner,
  60.       pattern:"SSH-.*-1\.([0-1]|[0-1]\..*|2\.([0-9]|1[0-9]|2[0-9]|3[01]))[^0-9]*$", icase:TRUE))security_warning(port);
  61. else {
  62.     if(ereg(pattern:".*openssh[-_](1|2\.([0-2]\.|3\.0)).*",string:banner, icase:TRUE))security_warning(port);
  63.         
  64. }
  65.  
  66.  
  67.